3.851 \(\int \frac {x}{a+b x^2+c x^4} \, dx\)

Optimal. Leaf size=36 \[ -\frac {\tanh ^{-1}\left (\frac {b+2 c x^2}{\sqrt {b^2-4 a c}}\right )}{\sqrt {b^2-4 a c}} \]

[Out]

-arctanh((2*c*x^2+b)/(-4*a*c+b^2)^(1/2))/(-4*a*c+b^2)^(1/2)

________________________________________________________________________________________

Rubi [A]  time = 0.03, antiderivative size = 36, normalized size of antiderivative = 1.00, number of steps used = 3, number of rules used = 3, integrand size = 16, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.188, Rules used = {1107, 618, 206} \[ -\frac {\tanh ^{-1}\left (\frac {b+2 c x^2}{\sqrt {b^2-4 a c}}\right )}{\sqrt {b^2-4 a c}} \]

Antiderivative was successfully verified.

[In]

Int[x/(a + b*x^2 + c*x^4),x]

[Out]

-(ArcTanh[(b + 2*c*x^2)/Sqrt[b^2 - 4*a*c]]/Sqrt[b^2 - 4*a*c])

Rule 206

Int[((a_) + (b_.)*(x_)^2)^(-1), x_Symbol] :> Simp[(1*ArcTanh[(Rt[-b, 2]*x)/Rt[a, 2]])/(Rt[a, 2]*Rt[-b, 2]), x]
 /; FreeQ[{a, b}, x] && NegQ[a/b] && (GtQ[a, 0] || LtQ[b, 0])

Rule 618

Int[((a_.) + (b_.)*(x_) + (c_.)*(x_)^2)^(-1), x_Symbol] :> Dist[-2, Subst[Int[1/Simp[b^2 - 4*a*c - x^2, x], x]
, x, b + 2*c*x], x] /; FreeQ[{a, b, c}, x] && NeQ[b^2 - 4*a*c, 0]

Rule 1107

Int[(x_)*((a_) + (b_.)*(x_)^2 + (c_.)*(x_)^4)^(p_.), x_Symbol] :> Dist[1/2, Subst[Int[(a + b*x + c*x^2)^p, x],
 x, x^2], x] /; FreeQ[{a, b, c, p}, x]

Rubi steps

\begin {align*} \int \frac {x}{a+b x^2+c x^4} \, dx &=\frac {1}{2} \operatorname {Subst}\left (\int \frac {1}{a+b x+c x^2} \, dx,x,x^2\right )\\ &=-\operatorname {Subst}\left (\int \frac {1}{b^2-4 a c-x^2} \, dx,x,b+2 c x^2\right )\\ &=-\frac {\tanh ^{-1}\left (\frac {b+2 c x^2}{\sqrt {b^2-4 a c}}\right )}{\sqrt {b^2-4 a c}}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 39, normalized size = 1.08 \[ \frac {\tan ^{-1}\left (\frac {b+2 c x^2}{\sqrt {4 a c-b^2}}\right )}{\sqrt {4 a c-b^2}} \]

Antiderivative was successfully verified.

[In]

Integrate[x/(a + b*x^2 + c*x^4),x]

[Out]

ArcTan[(b + 2*c*x^2)/Sqrt[-b^2 + 4*a*c]]/Sqrt[-b^2 + 4*a*c]

________________________________________________________________________________________

fricas [A]  time = 1.19, size = 129, normalized size = 3.58 \[ \left [\frac {\log \left (\frac {2 \, c^{2} x^{4} + 2 \, b c x^{2} + b^{2} - 2 \, a c - {\left (2 \, c x^{2} + b\right )} \sqrt {b^{2} - 4 \, a c}}{c x^{4} + b x^{2} + a}\right )}{2 \, \sqrt {b^{2} - 4 \, a c}}, -\frac {\sqrt {-b^{2} + 4 \, a c} \arctan \left (-\frac {{\left (2 \, c x^{2} + b\right )} \sqrt {-b^{2} + 4 \, a c}}{b^{2} - 4 \, a c}\right )}{b^{2} - 4 \, a c}\right ] \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x/(c*x^4+b*x^2+a),x, algorithm="fricas")

[Out]

[1/2*log((2*c^2*x^4 + 2*b*c*x^2 + b^2 - 2*a*c - (2*c*x^2 + b)*sqrt(b^2 - 4*a*c))/(c*x^4 + b*x^2 + a))/sqrt(b^2
 - 4*a*c), -sqrt(-b^2 + 4*a*c)*arctan(-(2*c*x^2 + b)*sqrt(-b^2 + 4*a*c)/(b^2 - 4*a*c))/(b^2 - 4*a*c)]

________________________________________________________________________________________

giac [A]  time = 0.57, size = 35, normalized size = 0.97 \[ \frac {\arctan \left (\frac {2 \, c x^{2} + b}{\sqrt {-b^{2} + 4 \, a c}}\right )}{\sqrt {-b^{2} + 4 \, a c}} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x/(c*x^4+b*x^2+a),x, algorithm="giac")

[Out]

arctan((2*c*x^2 + b)/sqrt(-b^2 + 4*a*c))/sqrt(-b^2 + 4*a*c)

________________________________________________________________________________________

maple [A]  time = 0.00, size = 36, normalized size = 1.00 \[ \frac {\arctan \left (\frac {2 c \,x^{2}+b}{\sqrt {4 a c -b^{2}}}\right )}{\sqrt {4 a c -b^{2}}} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(x/(c*x^4+b*x^2+a),x)

[Out]

1/(4*a*c-b^2)^(1/2)*arctan((2*c*x^2+b)/(4*a*c-b^2)^(1/2))

________________________________________________________________________________________

maxima [F(-2)]  time = 0.00, size = 0, normalized size = 0.00 \[ \text {Exception raised: ValueError} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x/(c*x^4+b*x^2+a),x, algorithm="maxima")

[Out]

Exception raised: ValueError >> Computation failed since Maxima requested additional constraints; using the 'a
ssume' command before evaluation *may* help (example of legal syntax is 'assume(4*a*c-b^2>0)', see `assume?` f
or more details)Is 4*a*c-b^2 positive or negative?

________________________________________________________________________________________

mupad [B]  time = 4.27, size = 41, normalized size = 1.14 \[ \frac {\mathrm {atan}\left (\frac {2\,a\,c\,x^2+a\,b}{a\,\sqrt {4\,a\,c-b^2}}\right )}{\sqrt {4\,a\,c-b^2}} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(x/(a + b*x^2 + c*x^4),x)

[Out]

atan((a*b + 2*a*c*x^2)/(a*(4*a*c - b^2)^(1/2)))/(4*a*c - b^2)^(1/2)

________________________________________________________________________________________

sympy [B]  time = 0.59, size = 131, normalized size = 3.64 \[ - \frac {\sqrt {- \frac {1}{4 a c - b^{2}}} \log {\left (x^{2} + \frac {- 4 a c \sqrt {- \frac {1}{4 a c - b^{2}}} + b^{2} \sqrt {- \frac {1}{4 a c - b^{2}}} + b}{2 c} \right )}}{2} + \frac {\sqrt {- \frac {1}{4 a c - b^{2}}} \log {\left (x^{2} + \frac {4 a c \sqrt {- \frac {1}{4 a c - b^{2}}} - b^{2} \sqrt {- \frac {1}{4 a c - b^{2}}} + b}{2 c} \right )}}{2} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x/(c*x**4+b*x**2+a),x)

[Out]

-sqrt(-1/(4*a*c - b**2))*log(x**2 + (-4*a*c*sqrt(-1/(4*a*c - b**2)) + b**2*sqrt(-1/(4*a*c - b**2)) + b)/(2*c))
/2 + sqrt(-1/(4*a*c - b**2))*log(x**2 + (4*a*c*sqrt(-1/(4*a*c - b**2)) - b**2*sqrt(-1/(4*a*c - b**2)) + b)/(2*
c))/2

________________________________________________________________________________________